home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-09-07 | 1.2 KB | 49 lines | [TEXT/ALFA] |
- ## -*-Tcl-*- (install)
- # ###################################################################
- # Vince's Additions
- #
- # FILE: "cvsMenu.tcl"
- # created: 6/7/98 {10:54:07 pm}
- # last update: 1999-09-06T22:46:50Z
- # Author: Vince Darley
- # E-mail: vince@biosgroup.com
- # mail: Bios Group
- # 317 Paseo de Peralta, Santa Fe, NM 87501
- # www: http://www.biosgroup.com/
- #
- # Prototype file; doesn't actually do anything useful, but
- # may at some point be filled in. Actually the best approach
- # is probably to design a unified version control system for
- # Alpha, which can handle the basics of Cvs, Perforce, Voodoo
- # etc, and then adds specific functionality where each particular
- # system has it.
- #
- # ###################################################################
- ##
-
- alpha::menu cvsMenu 0.1 "C C++ Java Pasc" Cvs {
- } {cvsMenu} {} uninstall {this-file} maintainer {
- "Vince Darley"
- } help {
- Version control using CVS
- }
-
- namespace eval cvs {}
-
- proc cvsMenu {} {}
-
- Menu -n Cvs -p cvs::menuProc {
- "lock"
- "commit"
- "(-"
- "unlock"
- "update"
- }
-
- proc cvs::menuProc {menu item} {
- cvs::$item
- }
-
-
-
-